home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / JAVA Utilities / JShift Component Conversion Utility v0.4 / SETUP.EXE / {app} / readme.txt < prev   
Encoding:
Text File  |  2003-04-25  |  2.5 KB  |  38 lines

  1. JShift Component Conversion Utility v0.4.
  2. JShift Technologies
  3. http://www.jshift.com
  4. 113 St. Mark's Place, Suite 1W
  5. New York, NY  10009
  6. fax: 801-705-1989
  7. info@jshift.com
  8.  
  9.  
  10. installation
  11. -------------
  12. 1. Install JRE1.4 (http://java.sun.com/j2se/1.4) or above.
  13. 2. Ensure that the directory containing 'java.exe' (and 'javaw.exe') is in the PATH environment variable.
  14. 3. For Windows, just execute setup.exe.  Otherwise manually copy the contents of the ZIP file to some directory.
  15.  
  16.  
  17. startup
  18. -------
  19. In Windows, an icon should be added to the start menu.  If feeling 'old school' or using another OS, just execute
  20.  
  21. java -cp <JAR file location> com.jshift.ccu.gui.WorkAreaWindow [filename]
  22.  
  23. from the command line.  Replace [file location] with the path of the downloaded JAR file, of course.  Also, be sure to execute java.exe from within the directory you unzipped to (so that the CCU can locate the 'bin' directory).  If you plan on creating Java classes that extend existing custom classes, make sure that the superclasses are included in your classpath as well: 
  24.  
  25. java -cp <JAR file location>;%CLASSPATH% com.jshift.ccu.gui.WorkAreaWindow [filename]
  26.  
  27. If you wish to import to or export from a database, ensure that your JDBC drivers are included in the classpath.  Lastly, if your CLASSPATH is quoted (in order to accommodate directories with spaces in them), ccu.bat may claim to be unable to find a class.  This is because "ccu.jar;%CLASSPATH%" evaluates to a classpath with a quote in the middle.  Try manually editing ccu.bat and remove the '-cp' (and its associated parameter).  You'll then need to put the JAR file in your CLASSPATH manually.
  28.  
  29.  
  30. usage
  31. -----
  32. Once you're up and running, create a new project (File >> New) and insert entities (Tools >> Insert >> Entity) and attributes (Tools >> Insert >> Attribute) as necessary.  Alternatively, you can import elements from a database with the 'Import' & 'JDBC...' buttons.
  33.  
  34. troubleshooting
  35. ---------------
  36. If the CCU will not start using the above methods, try double-clicking the executable 'ccu.jar'.  If in a Windows environment, one might also attempt to run 'ccu.exe'.  If this fails, activate 'check_jvm.exe' in order to verify that the JVM is found properly.  When running 'ccu.exe', JVM parameters can be specified with "-J[VM parameter]" (e.g. -J-Xmx512m).  If difficulties occur in transferring project files from one computer to another, be certain that identical versions of the CCU are in use; the application build time can be found at the end of this file.
  37.  
  38. Built on 04/25/2003 01:38 PM.